int x = 5; // Assigns 5 to x
x = -x; // Equivalent to x = x * -1
println(x); // Prints "-5"